convert a list to string in flutter

89

 List<String> list =["one", "Two", "Thee"];
 print(list.join(","));  // Output will be like this : one,Two,Thee

Comments

Submit
0 Comments